home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C11 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  1.9 KB  |  93 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C11
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     Reference.exe \
  20.     Pasconst.exe \
  21.     Refptr.exe \
  22.     PassStruct.exe \
  23.     HowMany.exe \
  24.     HowMany2.exe \
  25.     Linenum.exe \
  26.     Autocc.exe \
  27.     Stopcc.exe \
  28.     Pmem.exe \
  29.     Pmem2.exe 
  30.  
  31. test: all 
  32.     Reference.exe  
  33.     Pasconst.exe  
  34.     Refptr.exe  
  35.     PassStruct.exe  
  36.     HowMany.exe  
  37.     HowMany2.exe  
  38.     Linenum.exe  
  39.     Autocc.exe  
  40.     Stopcc.exe  
  41.     Pmem.exe  
  42.     Pmem2.exe  
  43.  
  44. bugs: 
  45.     @echo No compiler bugs in this directory!
  46.  
  47. Reference.exe: Reference.obj 
  48.     $(CPP) $(OFLAG)Reference.exe Reference.obj 
  49.  
  50. Pasconst.exe: Pasconst.obj 
  51.     $(CPP) $(OFLAG)Pasconst.exe Pasconst.obj 
  52.  
  53. Refptr.exe: Refptr.obj 
  54.     $(CPP) $(OFLAG)Refptr.exe Refptr.obj 
  55.  
  56. PassStruct.exe: PassStruct.obj 
  57.     $(CPP) $(OFLAG)PassStruct.exe PassStruct.obj 
  58.  
  59. HowMany.exe: HowMany.obj 
  60.     $(CPP) $(OFLAG)HowMany.exe HowMany.obj 
  61.  
  62. HowMany2.exe: HowMany2.obj 
  63.     $(CPP) $(OFLAG)HowMany2.exe HowMany2.obj 
  64.  
  65. Linenum.exe: Linenum.obj 
  66.     $(CPP) $(OFLAG)Linenum.exe Linenum.obj 
  67.  
  68. Autocc.exe: Autocc.obj 
  69.     $(CPP) $(OFLAG)Autocc.exe Autocc.obj 
  70.  
  71. Stopcc.exe: Stopcc.obj 
  72.     $(CPP) $(OFLAG)Stopcc.exe Stopcc.obj 
  73.  
  74. Pmem.exe: Pmem.obj 
  75.     $(CPP) $(OFLAG)Pmem.exe Pmem.obj 
  76.  
  77. Pmem2.exe: Pmem2.obj 
  78.     $(CPP) $(OFLAG)Pmem2.exe Pmem2.obj 
  79.  
  80.  
  81. Reference.obj: Reference.cpp 
  82. Pasconst.obj: Pasconst.cpp 
  83. Refptr.obj: Refptr.cpp 
  84. PassStruct.obj: PassStruct.cpp 
  85. HowMany.obj: HowMany.cpp 
  86. HowMany2.obj: HowMany2.cpp 
  87. Linenum.obj: Linenum.cpp ..\require.h 
  88. Autocc.obj: Autocc.cpp 
  89. Stopcc.obj: Stopcc.cpp 
  90. Pmem.obj: Pmem.cpp 
  91. Pmem2.obj: Pmem2.cpp 
  92.  
  93.